home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Add-Ons / MPW / MPW cawf 4.0.9 / cawflib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-01  |  1.6 KB  |  44 lines  |  [TEXT/KAHL]

  1. /*
  2.  *    cawflib.h - definition of cawf's library path
  3.  */
  4.  
  5. /*
  6.  *    Copyright (c) 1991 Purdue University Research Foundation,
  7.  *    West Lafayette, Indiana 47907.  All rights reserved.
  8.  *
  9.  *    Written by Victor A. Abell <abe@cc.purdue.edu>,  Purdue    University
  10.  *    Computing Center.  Not derived from licensed software; derived from
  11.  *    awf(1) by Henry Spencer of the University of Toronto.
  12.  *
  13.  *    Permission is granted to anyone to use this software for any
  14.  *    purpose on any computer system, and to alter it and redistribute
  15.  *    it freely, subject to the following restrictions:
  16.  *
  17.  *    1. The author is not responsible for any consequences of use of
  18.  *       this software, even if they arise from flaws in it.
  19.  *
  20.  *    2. The origin of this software must not be misrepresented, either
  21.  *       by explicit claim or by omission.  Credits must appear in the
  22.  *       documentation.
  23.  *
  24.  *    3. Altered versions must be plainly marked as such, and must not
  25.  *       be misrepresented as being the original software.  Credits must
  26.  *       appear in the documentation.
  27.  *
  28.  *    4. This notice may not be removed or altered.
  29.  */
  30.  
  31. #if    !defined(CAWFLIB)
  32. # if    defined(macintosh)
  33.     char *CAWFLIB = NULL;            /* Macintosh library location */
  34. # else    /* !defined(macintosh) */
  35. #  if    defined(UNIX)
  36. #define CAWFLIB         "/Homes/abe/lib/cawf"    /* UNIX library location */
  37. #  else    /* !defined(UNIX) */
  38. #define CAWFLIB         "c:/sys/lib/cawf"       /* PC-DOS library location */
  39. #  endif    /* defined(CAWFLIB) */
  40. # endif    /* defined(macintosh) */
  41. #endif    /* !defined(CAWFLIB) */
  42.                         /* (CAWFLIB environment
  43.                          * variable over-rides it) */
  44.